From: Eli Zaretskii Date: Tue, 17 Aug 2021 12:40:05 +0000 (+0300) Subject: ; Fix a comment in a recent commit. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~18^2~1714 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=b960e1aea27a9fcc7c6fe0c315cfb9cd0e8025aa;p=emacs.git ; Fix a comment in a recent commit. * lisp/help-mode.el (help-mode-syntax-table): Fix punctuation in a comment. --- diff --git a/lisp/help-mode.el b/lisp/help-mode.el index b53d00d0fb8..87f26651e01 100644 --- a/lisp/help-mode.el +++ b/lisp/help-mode.el @@ -142,8 +142,8 @@ The format is (FUNCTION ARGS...).") (defvar help-mode-syntax-table (let ((table (make-syntax-table emacs-lisp-mode-syntax-table))) - ;; treat single quotes as parens so that forward-sexp does not - ;; break when quoted string contains punctuation + ;; Treat single quotes as parens so that forward-sexp does not + ;; break when a quoted string contains punctuation. (modify-syntax-entry ?‘ "(’ " table) (modify-syntax-entry ?’ ")‘ " table) table)